-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support manual event subscription based case event-registry start #3817
Support manual event subscription based case event-registry start #3817
Conversation
CaseInstanceStartEventSubscriptionModificationBuilder createCaseInstanceStartEventSubscriptionModificationBuilder(); | ||
|
||
/** | ||
* Creates a new event subscription deletion builder delete one or more previously registered case start event subscriptions based |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Creates a new event subscription deletion builder delete one or more previously registered case start event subscriptions based | |
* Creates a new event subscription deletion builder to delete one or more previously registered case start event subscriptions based |
|
||
} else { | ||
throw new FlowableObjectNotFoundException("Case definition with key '" + caseDefinitionKey + | ||
"' and tenantId '"+ tenantId +"' was not found", CaseDefinition.class); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"' and tenantId '"+ tenantId +"' was not found", CaseDefinition.class); | |
"' and tenantId '"+ tenantId +"' was not found.", CaseDefinition.class); |
For consistency with other messages
import org.flowable.common.engine.impl.interceptor.CommandContext; | ||
|
||
/** | ||
* This command either modifies event subscriptions with a case start event and optional correlation parameter values. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* This command either modifies event subscriptions with a case start event and optional correlation parameter values. | |
* This command either deletes event subscriptions with a case start event and optional correlation parameter values. |
…t a new case based on a specific combination of correlation values
7d40dae
to
b68e0f9
Compare
Add support for dynamic, manually created event subscriptions with any combination of correlation parameter values for an event-registry based case start.
Check List:
Unit tests: YES
Documentation: NO